f39fda5f5a43ca50ea942da561cbe4eb9a93be8a,v7/appcompat/src/android/support/v7/widget/AppCompatBackgroundHelper.java,AppCompatBackgroundHelper,onSetBackgroundResource,#number#,73
Before Change
? mDrawableManager.getTintList(mView.getContext(), resId)
: null);
if (updateBackgroundTint()) {
applySupportBackgroundTint();
}
}
After Change
setInternalBackgroundTint(mDrawableManager != null
? mDrawableManager.getTintList(mView.getContext(), resId)
: null);
applySupportBackgroundTint();
}
void onSetBackgroundDrawable(Drawable background) {